home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-08-17 | 1.5 KB | 66 lines | [TEXT/MPS ] |
- ;
- ; File: GoggleSprocket.a
- ;
- ; Contains: Games Sprockets: GoggleSprocket interfaces
- ;
- ; Version: Technology: Goggle Sprocket 1.1
- ; Release: Universal Interfaces 3.2
- ;
- ; Copyright: © 1996-1998 by Apple Computer, Inc., all rights reserved.
- ;
- ; Bugs?: For bug reports, consult the following page on
- ; the World Wide Web:
- ;
- ; http://developer.apple.com/bugreporter/
- ;
- ;
- IF &TYPE('__GOGGLESPROCKET__') = 'UNDEFINED' THEN
- __GOGGLESPROCKET__ SET 1
-
- IF &TYPE('__MACTYPES__') = 'UNDEFINED' THEN
- include 'MacTypes.a'
- ENDIF
- IF &TYPE('__EVENTS__') = 'UNDEFINED' THEN
- include 'Events.a'
- ENDIF
-
- IF TARGET_CPU_PPC THEN
- ;
- ;********************************************************************************
- ;** constants & data types
- ;********************************************************************************
- ;
-
- ;
- ;********************************************************************************
- ;** prototypes for application level calls
- ;********************************************************************************
- ;
-
- ; general
- ;
- ; extern OSStatus GSpStartup(UInt32 inReserved)
- ;
- IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION GSpStartup
- ENDIF
-
- ;
- ; extern OSStatus GSpShutdown(UInt32 inReserved)
- ;
- IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION GSpShutdown
- ENDIF
-
- ; configuration
- ;
- ; extern OSStatus GSpConfigure(GSpEventProcPtr inEventProc, Point *inUpperLeft)
- ;
- IF TARGET_OS_MAC ** TARGET_RT_MAC_CFM THEN
- IMPORT_CFM_FUNCTION GSpConfigure
- ENDIF
-
- ENDIF ; TARGET_CPU_PPC
- ENDIF ; __GOGGLESPROCKET__
-
-